home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Application Events / ResumeEvent.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  341 b   |  24 lines  |  [TEXT/CWIE]

  1. // ResumeEvent.h
  2.  
  3. #ifndef ResumeEvent_h
  4. #define ResumeEvent_h
  5.  
  6. #ifndef Event_h
  7. #include "Event.h"
  8. #endif
  9.  
  10. class ResumeEvent: public Event
  11.   {
  12.     private:
  13.         bool convertClipboard;
  14.         
  15.     public:
  16.         ResumeEvent( const EventRecord& event );
  17.  
  18.         bool ConvertClipboard() const        { return convertClipboard; }
  19.  
  20.         virtual void Respond() const;
  21.   };
  22.  
  23. #endif
  24.